Spread Windows Forms 15.0
GrapeCity.Spreadsheet Assembly / GrapeCity.Spreadsheet Namespace / IntervalArray<T> Class / GetValueFromQuickAccessKey Method
The key.


In This Topic
    GetValueFromQuickAccessKey Method
    In This Topic
    Gets the value from quick access key. This function is used to optimized accessing data from IntervalArray. Caller must ensure that the quick access key is valid (>=0) before call this function.
    Syntax
    'Declaration
     
    
    Public Function GetValueFromQuickAccessKey( _
       ByVal key As Integer _
    ) As T
    'Usage
     
    
    Dim instance As IntervalArray(Of T)
    Dim key As Integer
    Dim value As T
     
    value = instance.GetValueFromQuickAccessKey(key)
    public T GetValueFromQuickAccessKey( 
       int key
    )

    Parameters

    key
    The key.

    Return Value

    T.
    Remarks
    Safely for SpreadWin to use
    See Also